
 .slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .hero .hre {

                width: 100vw;

            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.6rem;
                width: 100vw;

            }
        }

        @media (max-width: 768px) {
            .hero p {
                font-size: 1rem;
                width: 90vw;

            }
        }


        .dropdown-item {
            padding: 0.60rem 2rem;
            cursor: pointer;
        }

        .dropdown-item:hover {
            background: #f3f3f3;
        }


        /* Responsive */



        .section-header h2 {
            font-size: 30px;
            font-weight: 600;
            letter-spacing: 2px;
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
        }

        /* Modern center underline */
        .section-header h2::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #dd9898;
            border-radius: 10px;
        }

        .para {
            text-align: justify;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(15px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        #para {
            text-align: justify
        }